ONLINE HELP
 WINDEVWEBDEV AND WINDEV MOBILE

New WINDEV, WEBDEV and WINDEV Mobile 2024 feature!
Help / WLanguage / WLanguage functions / Communication / Drive functions
WINDEV
WindowsLinuxUniversal Windows 10 AppJavaReports and QueriesUser code (UMC)
WEBDEV
WindowsLinuxPHPWEBDEV - Browser code
WINDEV Mobile
AndroidAndroid Widget iPhone/iPadIOS WidgetApple WatchMac CatalystUniversal Windows 10 App
Others
Stored procedures
Renames a file or directory on a remote drive.
Example
oOAuth2Param is OAuth2Parameters
oOAuth2Param.ClientID = "client_id"
oOAuth2Param.ClientSecret = "client_secret"
oOAuth2Param.RedirectionURL = "http://localhost:9000/"

oDrive is Drive
oDrive = oDriveConnect(oOAuth2Param)

sNewName is string
sNewName = ExtractString(UncompleteDir(EDT_DirectoryToRename), 1, "/", FromEnd)
sNewName += "_NEW_" + SysDateTime()

IF oDrive.Rename(EDT_DirectoryToRename, sNewName) = False THEN
Error("Unable to rename directory", ErrorInfo())
RETURN
END
Syntax
<Result> = <Drive>.Rename(<Element used> , <New name>)
<Result>: Boolean
  • True if the file was renamed,
  • False otherwise. To get more details on the error, use ErrorInfo with the errMessage constant.
<Drive>: Drive or gglDrive variable
Name of the Drive or gglDrive variable that corresponds to the drive to be used. The connection to the drive must have been previously established. Otherwise, the element is not copied.
<Element used>: Character string
Absolute path of the file or directory to be renamed. If this parameter does not correspond to a valid directory or file path, the element will not be renamed.
<New name>: Character string
New element name.
Business / UI classification: Business Logic
Component: wd290ggl.dll
Minimum version required
  • Version 2024
This page is also available for…
Comments
Click [Add] to post a comment

Last update: 01/05/2024

Send a report | Local help